/* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ffac0a;
            --white: #ffffff;
            --black: #000000;
            --accent-blue: #39B7FF;
            --accent-green: #2ecc71;
            --accent-dark-blue: #0085A8;
            --dark-bg: #0A1F2D;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        body {
            font-family: 'Nunito', sans-serif;
            background-color: #f8fafc;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
        }

        /* ====================== */
        /* HEADER STYLES FROM INDEX */
        /* ====================== */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            position: sticky;
            top: 0;
            z-index: 1000;
            /* Translucent glass effect */
            background: rgba(10, 31, 45, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 60px;
            width: auto;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(255, 172, 10, 0.5);
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .login-btn {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent-blue);
            border-radius: 30px;
            padding: 8px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-left: 20px;
        }

        .login-btn:hover {
            background: rgba(57, 183, 255, 0.2);
            transform: translateY(-2px);
        }

        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 8px 20px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .search-box:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 172, 10, 0.3);
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--white);
            padding: 5px 10px;
            width: 150px;
            font-size: 15px;
            outline: none;
        }

        .search-box input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        .search-box i {
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-box:hover i {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px 20px;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .login-btn {
                margin: 10px 0 0 0;
                width: 100%;
            }
            
            .logo {
                flex-direction: column;
                text-align: center;
            }
            
            .logo-img {
                height: 50px;
            }
        }

        /* ====================== */
        /* ABOUT PAGE STYLES */
        /* ====================== */
        .hero-about {
            background: linear-gradient(rgba(10, 31, 45, 0.85), rgba(10, 31, 45, 0.9)), 
                        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 8rem 5% 6rem;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .hero-content h1 span {
            color: var(--primary);
            display: block;
            font-size: 3.5rem;
        }

        .hero-content p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
            opacity: 0.95;
        }

        .motto {
            background: var(--accent-blue);
            color: var(--dark-bg);
            display: inline-block;
            padding: 1.5rem 2.5rem;
            border-radius: 15px;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: rotate(-2deg);
            border: 4px dashed var(--white);
        }

        .section {
            padding: 6rem 5%;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 10px;
        }

        .section-title p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 2rem auto 0;
            color: #444;
        }

        .about-content {
            display: flex;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
        }

        .about-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transform: rotate(2deg);
            transition: var(--transition);
            height: 450px;
        }

        .about-image:hover {
            transform: rotate(0) scale(1.02);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .what-we-do {
            background: var(--dark-bg);
            color: var(--white);
            padding: 6rem 5%;
            position: relative;
            overflow: hidden;
        }

        .what-we-do .section-title h2 {
            color: var(--white);
        }

        .what-we-do .section-title p {
            color: rgba(255,255,255,0.9);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            border: 2px solid rgba(255,255,255,0.15);
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border-color: var(--accent-blue);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--black);
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .mv-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-bottom: 5px solid var(--accent-blue);
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .mv-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent-blue);
        }

        .mv-card h3 {
            font-size: 1.8rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mv-card h3 i {
            color: var(--accent-blue);
            font-size: 2rem;
        }

        .mv-card p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #444;
        }

        .values {
            background: #f8fafc;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .value-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--white);
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-bg);
        }

        .team {
            background: linear-gradient(to bottom, #f8fafc 0%, #e6f0ff 100%);
            text-align: center;
            /* Remove bottom padding to eliminate gap */
            padding-bottom: 0;
        }

        .team .section-title p {
            max-width: 700px;
        }

        .team-cta {
            background: var(--accent-blue);
            color: var(--white);
            padding: 1.3rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 3rem;
            transition: var(--transition);
            border: 3px solid var(--accent-blue);
            margin-bottom: 4rem;
        }

        .team-cta:hover {
            background: transparent;
            color: var(--accent-blue);
            transform: scale(1.05);
        }

        .team-cta i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .team-cta:hover i {
            transform: translateX(5px);
        }

        .why-section {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark-blue) 100%);
            color: var(--white);
            padding: 8rem 5%;
            text-align: center;
        }

        .why-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .why-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .why-content h2 span {
            color: var(--primary);
            display: block;
        }

        .why-content p {
            font-size: 1.4rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .sweet-tag {
            background: var(--primary);
            color: var(--black);
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.8rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: rotate(-1deg);
            margin-top: 2rem;
            border: 3px dashed var(--white);
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .hero-content h1 span {
                font-size: 3rem;
            }
            
            .motto {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content h1 span {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
        }

        .floating {
            animation: floating 8s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        /* ====================== */
        /* FOOTER STYLES FROM INDEX */
        /* ====================== */
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 60px 20px 30px;
            position: relative;
            /* Remove top margin to eliminate gap */
            margin-top: 0;
        }

        .footer-wave {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 30px;
        }

        .footer-wave .shape-fill {
            fill: #FAFAFA;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto 40px;
            gap: 40px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-logo-img {
            height: 70px;
            width: auto;
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: #fff;
        }

        .logo-text span {
            color: #FFB400;
        }

        .footer-about {
            max-width: 300px;
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            color: #FFB400;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #43B0F1;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            color: #43B0F1;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #FFB400;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            color: #FFB400;
        }

        .footer-contact {
            color: #ddd;
            line-height: 1.8;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: #43B0F1;
            margin-right: 12px;
            font-size: 18px;
            min-width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #222;
            color: #FFB400;
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 18px;
        }

        .social-links a:hover {
            background: #FFB400;
            color: #000;
            transform: translateY(-5px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #333;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .copyright {
            color: #999;
            font-size: 14px;
        }

        .powered-by {
            color: #FFB400;
            font-weight: 600;
            font-size: 16px;
        }

        .back-to-top {
            background: #FFB400;
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: #43B0F1;
            color: white;
            transform: translateY(-5px) !important;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-col {
                min-width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .back-to-top {
                right: 20px;
                bottom: 20px;
            }
            
            .footer-logo {
                flex-direction: column;
                text-align: center;
            }
        }